/* ==========================================================================
   STYLE ABOUT (Layout Clássico Restaurado)
   ========================================================================== */

/* Utilitários Gerais */
.sec { padding: 60px 0; background: #ffffff; }
.sec-dark { padding: 80px 0; background: #1a1a1a; }
.text-center { text-align: center; }

.sec-head h2 { margin: 0; font-size: 32px; font-weight: 800; color: #111; }
.sec-dark .sec-head h2 { color: #fff; }
.sec-head p { margin: 10px 0 0; font-size: 15px; color: #666; }

.linha-destaque {
    width: 60px; height: 5px;
    background: #ffcc00;
    margin: 16px 0 20px;
    border-radius: 4px;
}

/* --- BANNER HERO --- */
.hero-sobre {
    background-image: url('https://images.unsplash.com/photo-1592982537447-7440770cbfc9?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 350px; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.65); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 42px; 
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #ffcc00;
}

.hero-content p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* --- NOSSA HISTÓRIA --- */
.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.historia-imagem img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.btn-primary {
    display: inline-block;
    background: #ffcc00;
    color: #111;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e6b800;
}

/* --- MISSÃO, VISÃO, VALORES --- */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mvv-card {
    background: #252525;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 4px solid #ffcc00;
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.mvv-icon img {
    width: 50px;
}

.mvv-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.mvv-card p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lista-valores {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.lista-valores li {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- DIFERENCIAIS --- */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.diferencial-item {
    background: #fff;
    padding: 20px;
    text-align: center;
}

.diferencial-item img {
    width: 50px;
    margin-bottom: 15px;
}

.diferencial-item h4 {
    font-size: 16px;
    color: #111;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.diferencial-item span {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* --- FAIXA AMARELA CTA FINAL --- */
.cta-yellow {
    background-color: #ffcc00;
    padding: 5px 0; 
    width: 100%;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-container span {
    font-size: 22px; 
    font-weight: 700;
    color: #111;
}

.btn-cta {
    background-color: #111;
    color: #ffcc00;
    padding: 12px 30px; 
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background-color: #333;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .feature-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .linha-destaque { margin: 16px auto 20px auto; }
    .mvv-grid { grid-template-columns: 1fr; }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-container { flex-direction: column; text-align: center; gap: 20px; }
}

@media (max-width: 500px) {
    .diferenciais-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 32px; }
}